翻訳と辞書
Words near each other
・ Garba Lawal
・ Garba Lompo
・ Garba Mohammed
・ Garba Nadama
・ Garba Tula
・ Garba Tula Airport
・ Garba Yakubu Lado
・ Garba, Central African Republic
・ Garba, Sichuan
・ Garbacz
・ Garbada (Vidhan Sabha constituency)
・ Garbadadar District
・ Garbadge Man
・ Garbage (album)
・ Garbage (band)
Garbage (computer science)
・ Garbage (disambiguation)
・ Garbage (EP)
・ Garbage (song)
・ Garbage barge
・ Garbage Bowl
・ Garbage City
・ Garbage collection
・ Garbage collection (computer science)
・ Garbage Day
・ Garbage Days Regurgitated
・ Garbage Daze Re-Regurgitated
・ Garbage discography
・ Garbage disposal unit
・ Garbage Dreams


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Garbage (computer science) : ウィキペディア英語版
Garbage (computer science)
Garbage, in the context of computer science, refers to objects, data, or other regions of the memory of a computer system (or other system resources), which will not be used in any future computation by the system, or by a program running on it. As computer systems all have finite amounts of memory, it is frequently necessary to ''deallocate'' garbage and return it to the heap, or memory pool, so the underlying memory can be reused.
== Classification ==
Garbage is generally classified into two types: semantic garbage that is any object or data never accessed by a running program for any combination of program inputs, and syntactic garbage that refers to objects or data within a program's memory space but unreachable from the program's root set. Objects and/or data which are not garbage are said to be ''live''.
Casually stated, syntactic garbage is data that ''cannot'' be reached, while semantic garbage is data that ''will not'' be reached. More precisely, syntactic garbage is data that is unreachable due to the reference graph (there is no path to it), which can be determined by many algorithms, as discussed in tracing garbage collector and only requires analyzing the data, not the code. Semantic garbage is data that will not be accessed, either because it is unreachable (hence also syntactic garbage), or reachable but will not be accessed; this latter requires analysis of the code, and is in general an undecidable problem.
Syntactic garbage is a (usually strict) subset of semantic garbage as it is entirely possible for an object to hold a reference to another object without the latter object being used.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Garbage (computer science)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.